home *** CD-ROM | disk | FTP | other *** search
- // Style definitions
-
- #include "scrnsty.h"
-
- char LineChars[4][10] = {
- // Blank characters
- {' ', ' ', ' ', ' ', ' ', ' ' , ' ' , ' ', ' ' , ' '},
- // Single line characters
- {0xda, 0xc0, 0xbf, 0xd9, 0xb4, 0xc3, 0xc1, 0xc2, 0xc4, 0xb3},
- // Double line characters
- {0xc9, 0xc8, 0xbb, 0xbc, 0xb4, 0xb9, 0xca, 0xcb, 0xcd, 0xba},
- // Dashed line characters
- {0xda, 0xc0, 0xbf, 0xd9, 0xb4, 0xc3, 0xc1, 0xc2, 0x2d, 0x7c}
- };
-
- char barchars[2][6] = {
- //sbar, sbut, upar, dnar, lfar, rtar
- { 0xb0, 0xb2, 0x18, 0x19, 0x1b, 0x1a },
- { 0x20, 0x04, 0x1e, 0x1f, 0x11, 0x10 }
- };
-
- // A set of predefined color packs
-
- ColorPak BlueColors = {0x17, 0x1e, 0x3e, 0x5e, 0x1b};
- ColorPak CyanColors = {0x31, 0x30, 0x31, 0x63, 0x70};
- ColorPak RedColors = {0x4c, 0x40, 0x4e, 0x74, 0x4e};
- ColorPak InvColors = {0x70, 0x70, 0x70, 0x0f, 0x70};
- ColorPak MonoColors = {0x07, 0x0f, 0x0f, 0x70, 0x70};
- ColorPak ErrColors = {0x4f, 0x4f, 0x40, 0x04, 0x40};
- ColorPak MsgColors = {0x2f, 0x2f, 0x2e, 0x70, 0x2d};
- ColorPak GrphColors = {0xb8, 0x30, 0x31, 0x63, 0x70};
-
- ColorPak DefColors = MonoColors;
-
- int WithShadow = SEShadow;
- int WindowStyle = Swappable + Closeable + WithShadow +
- BorderPrompt + OutlineMove;
- int ButtonStyle = Swappable + WithShadow + BorderPrompt;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-